Expand description
§Wasmtime’s embedding API
Wasmtime is a WebAssembly engine for JIT-compiled or ahead-of-time compiled
WebAssembly modules and components. More information about the Wasmtime
project as a whole can be found in the documentation
book whereas this documentation mostly focuses
on the API reference of the wasmtime
crate itself.
This crate contains an API used to interact with WebAssembly modules or WebAssembly components. For example you can compile WebAssembly, create instances, call functions, etc. As an embedder of WebAssembly you can also provide guests functionality from the host by creating host-defined functions, memories, globals, etc, which can do things that WebAssembly cannot (such as print to the screen).
The wasmtime
crate is designed to be safe, efficient, and ergonomic.
This enables executing WebAssembly without the embedder needing to use
unsafe
code, meaning that you’re guaranteed there is no undefined behavior
or segfaults in either the WebAssembly guest or the host itself.
The wasmtime
crate can roughly be thought of as being split into two
halves:
-
One half of the crate is similar to the JS WebAssembly API as well as the proposed C API and is intended for working with WebAssembly modules. This API resides in the root of the
wasmtime
crate’s namespace, for examplewasmtime::Module
. -
The second half of the crate is for use with the WebAssembly Component Model. The implementation of the component model is present in
wasmtime::component
and roughly mirrors the structure for core WebAssembly, for examplecomponent::Func
mirrorsFunc
.
An example of using Wasmtime to run a core WebAssembly module looks like:
use wasmtime::*;
fn main() -> wasmtime::Result<()> {
let engine = Engine::default();
// Modules can be compiled through either the text or binary format
let wat = r#"
(module
(import "host" "host_func" (func $host_hello (param i32)))
(func (export "hello")
i32.const 3
call $host_hello)
)
"#;
let module = Module::new(&engine, wat)?;
// Host functionality can be arbitrary Rust functions and is provided
// to guests through a `Linker`.
let mut linker = Linker::new(&engine);
linker.func_wrap("host", "host_func", |caller: Caller<'_, u32>, param: i32| {
println!("Got {} from WebAssembly", param);
println!("my host state is: {}", caller.data());
})?;
// All wasm objects operate within the context of a "store". Each
// `Store` has a type parameter to store host-specific data, which in
// this case we're using `4` for.
let mut store: Store<u32> = Store::new(&engine, 4);
// Instantiation of a module requires specifying its imports and then
// afterwards we can fetch exports by name, as well as asserting the
// type signature of the function with `get_typed_func`.
let instance = linker.instantiate(&mut store, &module)?;
let hello = instance.get_typed_func::<(), ()>(&mut store, "hello")?;
// And finally we can call the wasm!
hello.call(&mut store, ())?;
Ok(())
}
§Core Concepts
There are a number of core types and concepts that are important to be aware
of when using the wasmtime
crate:
-
Engine
- a global compilation and runtime environment for WebAssembly. AnEngine
is an object that can be shared concurrently across threads and is created with aConfig
with many knobs for configuring behavior. Compiling or executing any WebAssembly requires first configuring and creating anEngine
. AllModule
s andComponent
s belong to anEngine
, and typically there’s oneEngine
per process. -
Store
- container for all information related to WebAssembly objects such as functions, instances, memories, etc. AStore<T>
allows customization of theT
to store arbitrary host data within aStore
. This host data can be accessed through host functions via theCaller
function parameter in host-defined functions. AStore
is required for all WebAssembly operations, such as calling a wasm function. TheStore
is passed in as a “context” to methods likeFunc::call
. Dropping aStore
will deallocate all memory associated with WebAssembly objects within theStore
. AStore
is cheap to create and destroy and does not GC objects such as unused instances internally, so it’s intended to be short-lived (or no longer than the instances it contains). -
Linker
(orcomponent::Linker
) - host functions are defined within a linker to provide them a string-based name which can be looked up when instantiating a WebAssembly module or component. Linkers are traditionally populated at startup and then reused for all future instantiations of all instances, assuming the set of host functions does not change over time. Host functions areFn(..) + Send + Sync
and typically do not close over mutable state. Instead it’s recommended to store mutable state in theT
ofStore<T>
which is accessed throughCaller<'_, T>
provided to host functions. -
Module
(orComponent
) - a compiled WebAssembly module or component. These structures contain compiled executable code from a WebAssembly binary which is ready to execute after being instantiated. These are expensive to create as they require compilation of the input WebAssembly. Modules and components are safe to share across threads, however. Modules and components can additionally be serialized into a list of bytes to later be deserialized quickly. This enables JIT-style compilation through constructors such asModule::new
and AOT-style compilation by having the compilation process useModule::serialize
and the execution process useModule::deserialize
. -
Instance
(orcomponent::Instance
) - an instantiated WebAssembly module or component. An instance is where you can actually acquire aFunc
(orcomponent::Func
) from, for example, to call. -
Func
(orcomponent::Func
) - a WebAssembly function. This can be acquired as the export of anInstance
to call WebAssembly functions, or it can be created via functions likeFunc::wrap
to wrap host-defined functionality and give it to WebAssembly. Functions also have typed views asTypedFunc
orcomponent::TypedFunc
for a more efficient calling convention. -
Table
,Global
,Memory
,component::Resource
- other WebAssembly objects which can either be defined on the host or in wasm itself (via instances). These all have various ways of being interacted with likeFunc
.
All “store-connected” types such as Func
, Memory
, etc, require the
store to be passed in as a context to each method. Methods in wasmtime
frequently have their first parameter as either impl AsContext
or impl AsContextMut
. These
traits are implemented for a variety of types, allowing you to, for example,
pass the following types into methods:
&Store<T>
&mut Store<T>
&Caller<'_, T>
&mut Caller<'_, T>
StoreContext<'_, T>
StoreContextMut<'_, T>
A Store
is the sole owner of all WebAssembly internals. Types like
Func
point within the Store
and require the Store
to be provided
to actually access the internals of the WebAssembly function, for instance.
§WASI
The wasmtime
crate does not natively provide support for WASI, but you can
use the wasmtime-wasi
crate for that purpose. With wasmtime-wasi
all
WASI functions can be added to a Linker
and then used to instantiate
WASI-using modules. For more information see the WASI example in the
documentation.
§Crate Features
The wasmtime
crate comes with a number of compile-time features that can
be used to customize what features it supports. Some of these features are
just internal details, but some affect the public API of the wasmtime
crate. Wasmtime APIs gated behind a Cargo feature should be indicated as
such in the documentation.
-
runtime
- Enabled by default, this feature enables executing WebAssembly modules and components. If a compiler is not available (such ascranelift
) thenModule::deserialize
must be used, for example, to provide an ahead-of-time compiled artifact to execute WebAssembly. -
cranelift
- Enabled by default, this features enables using Cranelift at runtime to compile a WebAssembly module to native code. This feature is required to process and compile new WebAssembly modules and components. -
cache
- Enabled by default, this feature adds support for wasmtime to perform internal caching of modules in a global location. This must still be enabled explicitly throughConfig::cache_config_load
orConfig::cache_config_load_default
. -
wat
- Enabled by default, this feature adds support for accepting the text format of WebAssembly inModule::new
andComponent::new
. The text format will be automatically recognized and translated to binary when compiling a module. -
parallel-compilation
- Enabled by default, this feature enables support for compiling functions in parallel withrayon
. -
async
- Enabled by default, this feature enables APIs and runtime support for defining asynchronous host functions and calling WebAssembly asynchronously. For more information seeConfig::async_support
. -
profiling
- Enabled by default, this feature compiles in support for profiling guest code via a number of possible strategies. SeeConfig::profiler
for more information. -
all-arch
- Not enabled by default. This feature compiles in support for all architectures for both the JIT compiler and thewasmtime compile
CLI command. This can be combined withConfig::target
to precompile modules for a different platform than the host. -
pooling-allocator
- Enabled by default, this feature adds support forPoolingAllocationConfig
to pass toConfig::allocation_strategy
. The pooling allocator can enable efficient reuse of resources for high-concurrency and high-instantiation-count scenarios. -
demangle
- Enabled by default, this will affect how backtraces are printed and whether symbol names from WebAssembly are attempted to be demangled. Rust and C++ demanglings are currently supported. -
coredump
- Enabled by default, this will provide support for generating a core dump when a trap happens. This can be configured viaConfig::coredump_on_trap
. -
addr2line
- Enabled by default, this feature configures whether traps will attempt to parse DWARF debug information and convert WebAssembly addresses to source filenames and line numbers. -
debug-builtins
- Enabled by default, this feature includes some built-in debugging utilities and symbols for native debuggers such as GDB and LLDB to attach to the process Wasmtime is used within. The intrinsics provided will enable debugging guest code compiled to WebAssembly. This must also be enabled viaConfig::debug_info
as well for guests. -
component-model
- Enabled by default, this enables support for thewasmtime::component
API for working with components. -
gc
- Enabled by default, this enables support for a number of WebAssembly proposals such asreference-types
,function-references
, andgc
. Note that the implementation of thegc
proposal itself is not yet complete at this time. -
threads
- Enabled by default, this enables compile-time support for the WebAssemblythreads
proposal, notably shared memories. -
call-hook
- Disabled by default, this enables support for theStore::call_hook
API. This incurs a small overhead on all entries/exits from WebAssembly and may want to be disabled by some embedders. -
memory-protection-keys
- Disabled by default, this enables support for thePoolingAllocationConfig::memory_protection_keys
API. This feature currently only works on x64 Linux and can enable compacting the virtual memory allocation for linear memories in the pooling allocator. This comes with the same overhead as thecall-hook
feature where entries/exits into WebAssembly will have more overhead than before.
More crate features can be found in the manifest of Wasmtime itself for seeing what can be enabled and disabled.
Re-exports§
Modules§
- component
runtime
andcomponent-model
Embedding API for the Component Model - unix
runtime
Unix-specific extension for thewasmtime
crate.
Structs§
- AnyRef
gc
andruntime
Ananyref
GC reference. - Array
Type runtime
The type of a WebAssembly array. - Caller
runtime
A structure representing the caller’s context when creating a function viaFunc::wrap
. - Code
Builder cranelift
orwinch
Builder-style structure used to create aModule
or pre-compile a module to a serialized list of bytes. - Code
Memory runtime
Management of executable memory within aMmapVec
- Compiled
Module runtime
A compiled wasm module, ready to be instantiated. - Global configuration options used to create an
Engine
and customize its behavior. - An
Engine
which is a global context for compilation and management of wasm modules. - A weak reference to an
Engine
. - Export
runtime
An exported WebAssembly value. - Export
Type runtime
A descriptor for an exported WebAssembly value. - Extern
Ref gc
andruntime
An opaque, GC-managed reference to some host data that can be passed to WebAssembly. - Field
Type runtime
The type of astruct
field or anarray
’s elements. - Frame
Info runtime
Description of a frame in a backtrace for aWasmBacktrace
. - Frame
Symbol runtime
Debug information for a symbol that is attached to aFrameInfo
. - Func
runtime
A WebAssembly function which can be called. - Func
Type runtime
The type of a WebAssembly function. - GcHeap
OutOf Memory runtime
An error returned when attempting to allocate a GC-managed object, but the GC heap is out of memory. - Global
runtime
A WebAssemblyglobal
value which can be read and written to. - Global
Type runtime
A WebAssembly global descriptor. - Guest
Profiler profiling
andruntime
Collects basic profiling data for a single WebAssembly guest. - I31
gc
andruntime
A 31-bit integer. - Import
Type runtime
A descriptor for an imported value into a wasm module. - Instance
runtime
An instantiated WebAssembly module. - Instance
Pre runtime
An instance, pre-instantiation, that is ready to be instantiated. - Linker
runtime
Structure used to link wasm modules/instances together. - Manually
Rooted gc
andruntime
A rooted reference to a garbage-collectedT
with arbitrary lifetime. - Memory
runtime
A WebAssembly linear memory. - Memory
Access Error runtime
Error for out of boundsMemory
access. - Memory
Type runtime
A descriptor for a WebAssembly memory type. - Memory
Type Builder runtime
A builder forMemoryType
s. - Module
runtime
A compiled WebAssembly module, ready to be instantiated. - Module
Export runtime
Describes the location of an export in a module. - NoExtern
runtime
A reference to the abstractnoextern
heap value. - NoFunc
runtime
A reference to the abstractnofunc
heap value. - Pool
Concurrency Limit Error pooling-allocator
andruntime
An error returned when the pooling allocator cannot allocate a table, memory, etc… because the maximum number of concurrent allocations for that entity has been reached. - Pooling
Allocation Config pooling-allocator
Configuration options used withInstanceAllocationStrategy::Pooling
to change the behavior of the pooling instance allocator. - RefType
runtime
Opaque references to data in the Wasm heap or to host data. - Resources
Required runtime
- Root
Scope gc
andruntime
Nested rooting scopes. - Rooted
gc
andruntime
A scoped, rooted reference to a garbage-collectedT
. - Shared
Memory runtime
A constructor for externally-created shared memory. - Store
runtime
AStore
is a collection of WebAssembly instances and host-defined state. - Store
Context runtime
A temporary handle to a&Store<T>
. - Store
Context Mut runtime
A temporary handle to a&mut Store<T>
. - Store
Limits runtime
Provides limits for aStore
. - Store
Limits Builder runtime
Used to buildStoreLimits
. - Struct
Type runtime
The type of a WebAssembly struct. - Table
runtime
A WebAssemblytable
, or an array of values. - Table
Type runtime
A descriptor for a table in a WebAssembly module. - Typed
Func runtime
A statically typed WebAssembly function. - Unknown
Import Error runtime
Error for an unresolvable import. - V128
runtime
Representation of a 128-bit vector type,v128
, for WebAssembly. - Wasm
Backtrace runtime
Representation of a backtrace of function frames in a WebAssembly module for where an error happened. - Wasm
Core Dump coredump
andruntime
Representation of a core dump of a WebAssembly module
Enums§
- Call
Hook runtime
Passed to the argument ofStore::call_hook
to indicate a state transition in the WebAssembly VM. - Extern
runtime
An external item to a WebAssembly module, or a list of what can possibly be exported from a wasm module. - Extern
Type runtime
A list of all possible types which can be externally referenced from a WebAssembly module. - Finality
runtime
Indicator of whether a type is final or not. - Heap
Type runtime
The heap types that can Wasm can have references to. - Represents the module instance allocation strategy to use.
- Configure the strategy used for versioning in serializing and deserializing
crate::Module
. - MpkEnabled
runtime
andpooling-allocator
Describe the tri-state configuration of memory protection keys (MPK). - Mutability
runtime
Indicator of whether a global value, struct’s field, or array type’s elements are mutable or not. - Possible optimization levels for the Cranelift codegen backend.
- Return value from the
Engine::detect_precompiled
API. - Select which profiling technique to support.
- Ref
runtime
A reference. - Storage
Type runtime
The storage type of astruct
field orarray
element. - Possible Compilation strategies for a wasm module.
- Representation of a WebAssembly trap and what caused it to occur.
- Update
Deadline runtime
What to do after returning from a callback when the engine epoch reaches the deadline for a Store during execution of a function using that store. - Val
runtime
Possible runtime values that a WebAssembly module can either consume or produce. - ValType
runtime
A list of all possible value types in WebAssembly. - Wait
Result runtime
Result ofMemory::atomic_wait32
andMemory::atomic_wait64
- Select how wasm backtrace detailed information is handled.
Constants§
- DEFAULT_
INSTANCE_ LIMIT runtime
Value returned byResourceLimiter::instances
default method - DEFAULT_
MEMORY_ LIMIT runtime
Value returned byResourceLimiter::memories
default method - DEFAULT_
TABLE_ LIMIT runtime
Value returned byResourceLimiter::tables
default method
Traits§
- AsContext
runtime
A trait used to get shared access to aStore
in Wasmtime. - AsContext
Mut runtime
A trait used to get exclusive mutable access to aStore
in Wasmtime. - Cache
Store incremental-cache
andcranelift
Implementation of an incremental compilation’s key/value cache store. - Call
Hook Handler async
andcall-hook
andruntime
An object that can take callbacks when the runtime enters or exits hostcalls. - GcRef
runtime
A common trait implemented by all garbage-collected reference types. - Into
Func runtime
Internal trait implemented for all arguments that can be passed toFunc::wrap
andLinker::func_wrap
. - Linear
Memory runtime
A linear memory. This trait provides an interface for raw memory buffers which are used by wasmtime, e.g. inside [‘Memory’]. Such buffers are in principle not thread safe. By implementing this trait together with MemoryCreator, one can supply wasmtime with custom allocated host managed memory. - Memory
Creator runtime
A memory creator. Can be used to provide a memory creator to wasmtime which supplies host managed memory. - Resource
Limiter runtime
Used by hosts to limit resource consumption of instances. - Resource
Limiter Async runtime
andasync
Used by hosts to limit resource consumption of instances, blocking asynchronously if necessary. - Rooted
GcRef runtime
A trait implemented for GC references that are guaranteed to be rooted: - Stack
Creator async
andruntime
A stack creator. Can be used to provide a stack creator to wasmtime which supplies stacks for async support. - Stack
Memory async
andruntime
A stack memory. This trait provides an interface for raw memory buffers which are used by wasmtime inside of stacks which wasmtime executes WebAssembly in for async support. By implementing this trait together with StackCreator, one can supply wasmtime with custom allocated host managed stacks. - Wasm
Params runtime
A trait used forFunc::typed
and withTypedFunc
to represent the set of parameters for wasm functions. - Wasm
Results runtime
A trait used forFunc::typed
and withTypedFunc
to represent the set of results for wasm functions. - WasmRet
runtime
A trait implemented for types which can be returned from closures passed toFunc::wrap
and friends. - WasmTy
runtime
A trait implemented for types which can be arguments and results for closures passed toFunc::wrap
as well as parameters toFunc::typed
. - Wasm
TyList runtime
Trait implemented for various tuples made up of types which implementWasmTy
that can be passed toFunc::wrap_inner
and [HostContext::from_closure
].
Unions§
- ValRaw
runtime
A “raw” and unsafe representation of a WebAssembly value.